home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / ncase_detection.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  71 lines

  1. #
  2. # Copyright (C) 2004 Tenable Network Security 
  3. #
  4. #
  5.  
  6. if(description)
  7. {
  8.  script_id(12017);
  9.  script_version("$Revision: 1.2 $");
  10.  
  11.  name["english"] = "NCASE detection";
  12.  
  13.  script_name(english:name["english"]);
  14.  
  15.  desc["english"] = "
  16. The remote host is using the NCASE program.  
  17. You should ensure that:
  18. - the user intended to install NCASE (it is sometimes silently installed)
  19. - the use of NCASE matches your corporate mandates and security policies.
  20.  
  21. To remove this sort of software, you may wish to check out ad-aware or spybot. 
  22.  
  23. See also : http://pestpatrol.com/PestInfo/n/ncase.asp 
  24. Solution : Uninstall this software
  25. Risk factor : High";
  26.  
  27.  
  28.  
  29.  script_description(english:desc["english"]);
  30.  
  31.  summary["english"] = "NCASE detection";
  32.  
  33.  script_summary(english:summary["english"]);
  34.  
  35.  script_category(ACT_GATHER_INFO);
  36.  
  37.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  38.  family["english"] = "Windows";
  39.  script_family(english:family["english"]);
  40.  
  41.  script_dependencies("smb_registry_full_access.nasl");
  42.  script_require_keys("SMB/registry_full_access");
  43.  
  44.  script_require_ports(139, 445);
  45.  exit(0);
  46. }
  47.  
  48.  
  49. # start the script
  50.  
  51.  
  52. if ( !get_kb_item("SMB/registry_full_access") ) exit(0);
  53.  
  54. path[0] = "clsid\{2bc43670-c0bd-4794-bb11-f60f3e001dc5}";
  55. path[1] = "clsid\{6eb5b540-1e74-4d91-a7f0-5b758d333702}";
  56. path[2] = "software\microsoft\code store database\distribution units\{6eb5b540-1e74-4d91-a7f0-5b758d333702}";
  57. path[3] = "software\microsoft\windows\currentversion\uninstall\msbb";
  58. path[4] = "software\microsoft\windows\currentversion\uninstall\ncase";
  59. path[5] = "typelib\{6eb5b540-1e74-4d91-a7f0-5b758d333702}";
  60.  
  61.  
  62.  
  63. include("smb_nt.inc");
  64.  
  65. for (i=0; path[i]; i++) {
  66.        val = registry_key_exists(key:path[i]);
  67.        if(val != NULL) {security_hole(kb_smb_transport()); exit(0); } 
  68. }
  69.  
  70.  
  71.